home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / freeli20.zip / progs / redo_ex.bat < prev    next >
DOS Batch File  |  1996-07-01  |  259b  |  12 lines

  1. @echo off
  2. tasm -m -ml -q -t *.asm
  3. if not exist freelib.lib goto try1
  4. for %%x in (*.obj) do tlink/t %%x,,,freelib.lib
  5. goto done
  6. :try1
  7. if not exist ..\freelib.lib goto done
  8. for %%x in (*.obj) do tlink/t %%x,,,..\freelib.lib
  9. :done
  10. del *.obj
  11. del *.map
  12.